home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -in_the_mag- / reader_requests / wild / include / clib / wildprefs_protos.h < prev   
C/C++ Source or Header  |  2000-02-23  |  720b  |  29 lines

  1. #ifndef CLIB_WILDPREFS_PROTOS_H
  2. #define CLIB_WILDPREFS_PROTOS_H
  3.  
  4. /*
  5. **    $VER: wildprefs_protos.h 2.00 (8.10.98)
  6. **
  7. **    WildPrefs.library prototypes.
  8. **
  9. */
  10.  
  11. #ifndef  EXEC_TYPES_H
  12. #include <exec/types.h>
  13. #endif
  14.  
  15. #ifndef  WILDPREFS_H
  16. #include <libraries/wildprefs.h>
  17. #endif
  18.  
  19. struct MinList         *wpGetHandledList();
  20. struct AppPrefs     *wpFindNamedApp(char *name);
  21. BOOL            wpLoadPrefs(struct AppPrefs *app,struct TagItem *tags);
  22. BOOL            wpSetPrefs(struct AppPrefs *app,struct TagItem *tags);
  23. BOOL            wpTestPrefs(struct AppPrefs *app);
  24. BOOL            wpUsePrefs(struct AppPrefs *app);
  25. BOOL            wpSavePrefs(struct AppPrefs *app);
  26. BOOL            wpFreePrefs(struct AppPrefs *app);
  27. ULONG            wpGetAppTag(struct AppPrefs *app,ULONG tagdata,ULONG def);
  28.  
  29. #endif